home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xdino / xdino.c < prev    next >
C/C++ Source or Header  |  1996-04-02  |  13KB  |  448 lines

  1. /*
  2. # X-BASED DINOSAUR CUBE
  3. #
  4. #  xdino.c
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1995 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /*
  27.   Version 4: 94/05/30 Xt
  28. */
  29.  
  30. #include <stdlib.h>
  31. #include <stdio.h>
  32. #ifdef VMS
  33. #include <unixlib.h>
  34. #define getlogin cuserid
  35. #else
  36. #ifndef apollo
  37. #include <unistd.h>
  38. #endif
  39. #endif
  40. #include <X11/Intrinsic.h>
  41. #include <X11/StringDefs.h>
  42. #include <X11/Shell.h>
  43. #include <X11/cursorfont.h>
  44. #include "Dino.h"
  45. #include "Dino2d.h"
  46. #include "Dino3d.h"
  47. #include "dino.xbm"
  48.  
  49. #ifndef SCOREFILE
  50. #define SCOREFILE "/usr/games/lib/dino.scores"
  51. #endif
  52.  
  53. /* The following are in DinoP.h also */
  54. #define PERIOD2 2
  55. #define PERIOD3 3
  56. #define BOTH 4
  57. #define MAXMODES 3
  58. #define MAXFACES 6
  59.  
  60. #define MAXRECORD 32767
  61. #define MAXPROGNAME 80
  62. #define MAXNAME 256
  63.  
  64. static void Initialize();
  65. static void CallbackDino();
  66.  
  67. static void PrintRecord();
  68. static int HandleSolved();
  69. static void PrintState();
  70. static void ReadRecords();
  71. static void WriteRecords();
  72.  
  73. static Widget dino2d, dino3d;
  74. static Arg arg[5];
  75. static int dinoRecord[MAXMODES][2], movesDsp = 0;
  76. static char progDsp[64] = "xdino";
  77. static char recordDsp[16] = "INF";
  78. static char messageDsp[128] = "Welcome";
  79. static char titleDsp[256] = "";
  80.  
  81. static void Usage()
  82. {
  83.   (void) fprintf(stderr, "usage: xdino\n");
  84.   (void) fprintf(stderr, 
  85.     "\t[-geometry [{width}][x{height}][{+-}{xoff}[{+-}{yoff}]]]\n");
  86.   (void) fprintf(stderr, 
  87.     "\t[-display [{host}]:[{vs}]][-fg {color}] [-bg {color}]\n");
  88.   (void) fprintf(stderr,
  89.     "\t[-{border|bd} {color}] [-mono] [-{mode {int} | both}] [-[no]orient]\n");
  90.   (void) fprintf(stderr,
  91.     "\t[-[no]practice] [-face{0|1|2|3|4|5} {color}]\n");
  92.   exit(1);
  93. }
  94.  
  95. static XrmOptionDescRec options[] = {
  96.   {"-fg",        "*dino.Foreground",    XrmoptionSepArg,    NULL},
  97.   {"-bg",        "*Background",        XrmoptionSepArg,    NULL},
  98.   {"-foreground",    "*dino.Foreground",    XrmoptionSepArg,    NULL},
  99.   {"-background",    "*Background",        XrmoptionSepArg,    NULL},
  100.   {"-border",        "*dino.pieceBorder",    XrmoptionSepArg,    NULL},
  101.   {"-bd",        "*dino.pieceBorder",    XrmoptionSepArg,    NULL},
  102.   {"-mono",        "*dino.mono",        XrmoptionNoArg,        "TRUE"},
  103.   {"-mode",        "*dino.mode",        XrmoptionSepArg,    NULL},
  104.   {"-both",        "*dino.mode",        XrmoptionNoArg,        "4"},
  105.   {"-orient",        "*dino.orient",        XrmoptionNoArg,        "TRUE"},
  106.   {"-noorient",        "*dino.orient",        XrmoptionNoArg,        "FALSE"},
  107.   {"-practice",        "*dino.practice",    XrmoptionNoArg,        "TRUE"},
  108.   {"-nopractice",    "*dino.practice",    XrmoptionNoArg,        "FALSE"},
  109.   {"-face0",        "*dino.faceColor0",    XrmoptionSepArg,    NULL},
  110.   {"-face1",        "*dino.faceColor1",    XrmoptionSepArg,    NULL},
  111.   {"-face2",        "*dino.faceColor2",    XrmoptionSepArg,    NULL},
  112.   {"-face3",        "*dino.faceColor3",    XrmoptionSepArg,    NULL},
  113.   {"-face4",        "*dino.faceColor4",    XrmoptionSepArg,    NULL},
  114.   {"-face5",        "*dino.faceColor5",    XrmoptionSepArg,    NULL},
  115. };
  116.  
  117. int main(argc, argv)
  118.   int argc;
  119.   char *argv[];
  120. {
  121.   Widget toplevel, shell;
  122.  
  123.   toplevel = XtInitialize(argv[0], "Dino",
  124.     options, XtNumber(options), &argc, argv);
  125.   if (argc != 1)
  126.     Usage();
  127.  
  128.   shell = XtCreateApplicationShell(argv[0], topLevelShellWidgetClass, NULL,
  129.     0);
  130.   XtSetArg(arg[0], XtNiconPixmap,
  131.     XCreateBitmapFromData(XtDisplay(toplevel),
  132.       RootWindowOfScreen(XtScreen(toplevel)),
  133.       (char *) dino_bits, dino_width, dino_height));
  134.   XtSetValues(toplevel, arg, 1);
  135.   XtSetArg(arg[0], XtNiconPixmap, 
  136.     XCreateBitmapFromData(XtDisplay(shell),
  137.       RootWindowOfScreen(XtScreen(shell)),
  138.       (char *) dino_bits, dino_width, dino_height));
  139.   XtSetValues(shell, arg, 1);
  140.   dino2d = XtCreateManagedWidget("dino", dino2dWidgetClass, toplevel,
  141.     NULL, 0);
  142.   XtAddCallback(dino2d, XtNselectCallback, CallbackDino, NULL);
  143.   dino3d = XtCreateManagedWidget("dino", dino3dWidgetClass, shell,
  144.     NULL, 0);
  145.   XtAddCallback(dino3d, XtNselectCallback, CallbackDino, NULL);
  146.   Initialize();
  147.   XtRealizeWidget(toplevel);
  148.   XtRealizeWidget(shell);
  149.   XGrabButton(XtDisplay(dino2d), AnyButton, AnyModifier, XtWindow(dino2d),
  150.     TRUE, ButtonPressMask | ButtonMotionMask | ButtonReleaseMask,
  151.     GrabModeAsync, GrabModeAsync, XtWindow(dino2d),
  152.     XCreateFontCursor(XtDisplay(dino2d), XC_crosshair));
  153.   XGrabButton(XtDisplay(dino3d), AnyButton, AnyModifier, XtWindow(dino3d),
  154.     TRUE, ButtonPressMask | ButtonMotionMask | ButtonReleaseMask,
  155.     GrabModeAsync, GrabModeAsync, XtWindow(dino3d),
  156.     XCreateFontCursor(XtDisplay(dino3d), XC_crosshair));
  157.   XtMainLoop();
  158.  
  159. #ifdef VMS
  160.   return 1;
  161. #else
  162.   return 0;
  163. #endif
  164. }
  165.  
  166. /* There's probably a better way to assure that they are the same but
  167.    I don't know it off hand. */
  168. static void MakeEquivalent(mode, orient, practice)
  169.   int *mode;
  170.   Boolean *orient, *practice;
  171. {
  172.   Boolean mono;
  173.   Pixel foreground, background, pieceBorder;
  174.   String faceColor[MAXFACES];
  175.  
  176.   XtVaGetValues(dino2d,
  177.     XtNmode, mode,
  178.     XtNorient, orient,
  179.     XtNpractice, practice,
  180.     XtNmono, &mono,
  181.     XtNforeground, &foreground,
  182.     XtNbackground, &background,
  183.     XtNpieceBorder, &pieceBorder,
  184.     XtNfaceColor0, &(faceColor[0]),
  185.     XtNfaceColor1, &(faceColor[1]),
  186.     XtNfaceColor2, &(faceColor[2]),
  187.     XtNfaceColor3, &(faceColor[3]),
  188.     XtNfaceColor4, &(faceColor[4]),
  189.     XtNfaceColor5, &(faceColor[5]),
  190.     NULL);
  191.   XtVaSetValues(dino2d,
  192.     XtNdirection, DINO_IGNORE,
  193.     XtNstart, FALSE,
  194.     NULL);
  195.   XtVaSetValues(dino3d,
  196.     XtNmode, *mode,
  197.     XtNorient, *orient,
  198.     XtNpractice, *practice,
  199.     XtNmono, mono,
  200.     XtNdirection, DINO_IGNORE,
  201.     XtNstart, FALSE,
  202.     XtNforeground, foreground,
  203.     XtNbackground, background,
  204.     XtNpieceBorder, pieceBorder,
  205.     XtNfaceColor0, faceColor[0],
  206.     XtNfaceColor1, faceColor[1],
  207.     XtNfaceColor2, faceColor[2],
  208.     XtNfaceColor3, faceColor[3],
  209.     XtNfaceColor4, faceColor[4],
  210.     XtNfaceColor5, faceColor[5],
  211.     NULL);
  212. }
  213.  
  214. static void Initialize()
  215. {
  216.   int mode;
  217.   Boolean orient, practice;
  218.  
  219.   MakeEquivalent(&mode, &orient, &practice);
  220.   ReadRecords();
  221.   PrintRecord(mode, orient, practice, recordDsp);
  222.   PrintState(XtParent(dino2d), progDsp, 2, mode, movesDsp,
  223.     recordDsp, messageDsp);
  224.   PrintState(XtParent(dino3d), progDsp, 3, mode, movesDsp,
  225.     recordDsp, messageDsp);
  226. }
  227.  
  228. static void CallbackDino(w, clientData, callData)
  229.   Widget w;
  230.   caddr_t clientData;
  231.   dinoCallbackStruct *callData;
  232. {
  233.   int mode, dim, otherdim;
  234.   Boolean orient, practice, start;
  235.   Widget otherw;
  236.  
  237.   if (w == dino2d) {
  238.     dim = 2;
  239.     otherw = dino3d;
  240.     otherdim = 3;
  241.   } else { /* (w == dino3d) */
  242.     dim = 3;
  243.     otherw = dino2d;
  244.     otherdim = 2;
  245.   }
  246.   XtVaGetValues(w,
  247.     XtNorient, &orient,
  248.     XtNmode, &mode,
  249.     XtNpractice, &practice,
  250.     XtNstart, &start,
  251.     NULL);
  252.   (void) strcpy(messageDsp, "");
  253.   switch (callData->reason) {
  254.     case DINO_RESTORE:
  255.       XtSetArg(arg[0], XtNdirection, DINO_RESTORE);
  256.       XtSetValues(otherw, arg, 1);
  257.       XtSetValues(w, arg, 1);
  258.       movesDsp = 0;
  259.       break;
  260.     case DINO_RESET:
  261.       movesDsp = 0;
  262.       break;
  263.     case DINO_ILLEGAL:
  264.       if (practice || start)
  265.         (void) strcpy(messageDsp, "Illegal move");
  266.       else
  267.         (void) strcpy(messageDsp, "Randomize to start");
  268.       break;
  269.     case DINO_MOVED:
  270.       movesDsp++;
  271. #ifdef DEBUG
  272.       if (movesDsp > 256)
  273.         exit(1);
  274. #endif
  275.       XtSetArg(arg[0], XtNstart, TRUE);
  276.       XtSetArg(arg[1], XtNface, callData->face);
  277.       XtSetArg(arg[2], XtNpos, callData->position);
  278.       XtSetArg(arg[3], XtNdirection, callData->direction);
  279.       XtSetArg(arg[4], XtNstyle, callData->style);
  280.       XtSetValues(otherw, arg, 5);
  281.       XtSetValues(w, arg, 1);
  282.       break;
  283.     case DINO_CONTROL:
  284.       XtSetArg(arg[0], XtNface, callData->face);
  285.       XtSetArg(arg[1], XtNpos, callData->position);
  286.       XtSetArg(arg[2], XtNdirection, callData->direction);
  287.       XtSetArg(arg[3], XtNstyle, callData->style);
  288.       XtSetValues(otherw, arg, 4);
  289.       return;
  290.     case DINO_SOLVED:
  291.       if (practice)
  292.         movesDsp = 0;
  293.       else { 
  294.         if (HandleSolved(movesDsp, mode, orient))
  295.           (void) sprintf(messageDsp, "Congratulations %s!!", getlogin());
  296.         else
  297.           (void) strcpy(messageDsp, "Solved!");
  298.       }
  299.       XtSetArg(arg[0], XtNstart, FALSE);
  300.       XtSetValues(w, arg, 1);
  301.       XtSetValues(otherw, arg, 1);
  302.       break;
  303.     case DINO_PRACTICE:
  304.       movesDsp = 0;
  305.       practice = !practice;
  306.       if (!practice)
  307.         (void) strcpy(messageDsp, "Randomize to start");
  308.       PrintRecord(mode, orient, practice, recordDsp);
  309.       XtSetArg(arg[0], XtNpractice, practice);
  310.       XtSetArg(arg[1], XtNstart, FALSE);
  311.       XtSetValues(w, arg, 2);
  312.       XtSetValues(otherw, arg, 2);
  313.       break;
  314.     case DINO_RANDOMIZE:
  315.       movesDsp = 0;
  316.       XtSetArg(arg[0], XtNpractice, FALSE);
  317.       XtSetArg(arg[1], XtNstart, FALSE);
  318.       XtSetValues(w, arg, 2);
  319.       XtSetValues(otherw, arg, 2);
  320.       break; 
  321.     case DINO_ORIENT:
  322.       movesDsp = 0;
  323.       orient = !orient;
  324.       PrintRecord(mode, orient, practice, recordDsp);
  325.       XtSetArg(arg[0], XtNorient, orient);
  326.       XtSetValues(w, arg, 1);
  327.       XtSetValues(otherw, arg, 1);
  328.       break;
  329.     case DINO_PERIOD2:
  330.     case DINO_PERIOD3:
  331.     case DINO_BOTH:
  332.       movesDsp = 0;
  333.       mode = callData->reason - DINO_PERIOD2 + PERIOD2;
  334.       PrintRecord(mode, orient, practice, recordDsp);
  335.       XtSetArg(arg[0], XtNmode, mode);
  336.       XtSetValues(w, arg, 1);
  337.       XtSetValues(otherw, arg, 1);
  338.       break;
  339.     case DINO_COMPUTED:
  340.       XtSetArg(arg[0], XtNstart, FALSE);
  341.       XtSetValues(w, arg, 1);
  342.       XtSetValues(otherw, arg, 1);
  343.       break;
  344.     case DINO_UNDO:
  345.       movesDsp--;
  346.       XtSetArg(arg[0], XtNstart, TRUE);
  347.       XtSetArg(arg[1], XtNface, callData->face);
  348.       XtSetArg(arg[2], XtNpos, callData->position);
  349.       XtSetArg(arg[3], XtNdirection, callData->direction);
  350.       XtSetArg(arg[4], XtNstyle, callData->style);
  351.       XtSetValues(otherw, arg, 5);
  352.       XtSetValues(w, arg, 1);
  353.       break;
  354.   }
  355.   PrintState(XtParent(w), progDsp, dim, mode, movesDsp,
  356.     recordDsp, messageDsp);
  357.   PrintState(XtParent(otherw), progDsp, otherdim, mode, movesDsp,
  358.     recordDsp, messageDsp);
  359. }
  360.  
  361. static void PrintRecord(mode, orient, practice, record)
  362.   int mode;
  363.   Boolean orient, practice;
  364.   char *record;
  365. {
  366.   int i = mode - PERIOD2;
  367.   int j = (orient) ? 1 : 0;
  368.  
  369.   if (practice)
  370.     (void) strcpy(record, "practice");
  371.   else if (dinoRecord[i][j] >= MAXRECORD)
  372.     (void) strcpy(record, "NEVER");
  373.   else
  374.     (void) sprintf(record, "%d", dinoRecord[i][j]);
  375. }
  376.  
  377. static int HandleSolved(counter, mode, orient)
  378.   int counter, mode;
  379.   Boolean orient;
  380. {
  381.   int i = mode - PERIOD2;
  382.   int j = (orient) ? 1 : 0;
  383.  
  384.   if (counter < dinoRecord[i][j]) {
  385.     dinoRecord[i][j] = counter;
  386.     if (orient && (dinoRecord[i][j] < dinoRecord[!i][j]))
  387.       dinoRecord[!i][j] = counter;
  388.     WriteRecords();
  389.     (void) sprintf(recordDsp, "%d", counter);
  390.     return TRUE;
  391.   }
  392.   return FALSE;
  393. }
  394.  
  395. static void PrintState(w, prog, dim, mode, moves, record, message)
  396.   Widget w;
  397.   char *prog, *record, *message;
  398.   int mode, dim, moves;
  399. {
  400.   char mb[10];
  401.  
  402.   if (mode == BOTH)
  403.     (void) strcpy(mb, "both");
  404.   else
  405.     (void) sprintf(mb, "%d", mode);
  406.   (void) sprintf(titleDsp, "%s%dd.%s: (%d/%s) - %s", prog, dim, mb, moves,
  407.     record, message);
  408.   XtSetArg(arg[0], XtNtitle, titleDsp);
  409.   XtSetValues(w, arg, 1);
  410. }
  411.  
  412. static void ReadRecords()
  413. {
  414.   FILE *fp;
  415.   int n, mode, orient;
  416.  
  417.   for (mode = 0; mode < MAXMODES; mode++)
  418.     for (orient = 0; orient < 2; orient++)
  419.       dinoRecord[mode][orient] = MAXRECORD;
  420.   if ((fp = fopen(SCOREFILE, "r")) == NULL)
  421.     (void) sprintf(messageDsp, "Can not open %s, taking defaults.", SCOREFILE);
  422.   else {
  423.     for (mode = 0; mode < MAXMODES; mode++)
  424.       for (orient = 0; orient < 2; orient++) {
  425.         (void) fscanf(fp, "%d", &n);
  426.         dinoRecord[mode][orient] = n;
  427.       }
  428.     (void) fclose(fp);
  429.   }
  430. }
  431.  
  432. static void WriteRecords()
  433. {
  434.   FILE *fp;
  435.   int mode, orient;
  436.  
  437.   if ((fp = fopen(SCOREFILE, "w")) == NULL)
  438.     (void) sprintf(messageDsp, "Can not write to %s.", SCOREFILE);
  439.   else {
  440.     for (mode = 0; mode < MAXMODES; mode++) {
  441.       for (orient = 0; orient < 2; orient++)
  442.         (void) fprintf(fp, "%d ", dinoRecord[mode][orient]);
  443.       (void) fprintf(fp, "\n");
  444.     }
  445.     (void) fclose(fp);
  446.   }
  447. }
  448.